home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-075.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  81 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:075-1
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14058);
  12.  script_version ("$Revision: 1.4 $");
  13.  script_bugtraq_id(8134, 8135, 8137);
  14.  script_cve_id("CAN-2003-0192", "CAN-2003-0253", "CAN-2003-0254");
  15.  
  16.  name["english"] = "MDKSA-2003:075-1: apache2";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:075-1 (apache2).
  22.  
  23.  
  24. Several vulnerabilities were discovered in Apache 2.x versions prior to 2.0.47.
  25. From the Apache 2.0.47 release notes:
  26. Certain sequences of per-directory renegotiations and the SSLCipherSuite
  27. directive being used to upgrade from a weak ciphersuite to a strong one could
  28. result in the weak ciphersuite being used in place of the new one
  29. (CAN-2003-0192).
  30. Certain errors returned by accept() on rarely accessed ports could cause
  31. temporary Denial of Service due to a bug in the prefork MPM (CAN-2003-0253).
  32. Denial of Service was caused when target host is IPv6 but FTP proxy server can't
  33. create IPv6 socket (CAN-2003-0254).
  34. The server would crash when going into an infinite loop due to too many
  35. subsequent internal redirects and nested subrequests (VU#379828).
  36. The Apache Software Foundation thanks Saheed Akhtar and Yoshioka Tsuneo for
  37. responsibly reporting these issues.
  38. To upgrade these apache packages, first stop Apache by issuing, as root:
  39. service httpd stop
  40. After the upgrade, restart Apache with:
  41. service httpd start
  42. Update:
  43. The previously released packages had a manpage conflict between apache2-common
  44. and apache-1.3 that prevented both packages from being installed at the same
  45. time. This update provides a fixed apache2-common package.
  46.  
  47.  
  48. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:075-1
  49. Risk factor : High";
  50.  
  51.  
  52.  
  53.  script_description(english:desc["english"]);
  54.  
  55.  summary["english"] = "Check for the version of the apache2 package";
  56.  script_summary(english:summary["english"]);
  57.  
  58.  script_category(ACT_GATHER_INFO);
  59.  
  60.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  61.  family["english"] = "Mandrake Local Security Checks";
  62.  script_family(english:family["english"]);
  63.  
  64.  script_dependencies("ssh_get_info.nasl");
  65.  script_require_keys("Host/Mandrake/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"apache2-common-2.0.47-1.2mdk", release:"MDK9.1", yank:"mdk") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if (rpm_exists(rpm:"apache2-", release:"MDK9.1") )
  76. {
  77.  set_kb_item(name:"CAN-2003-0192", value:TRUE);
  78.  set_kb_item(name:"CAN-2003-0253", value:TRUE);
  79.  set_kb_item(name:"CAN-2003-0254", value:TRUE);
  80. }
  81.